home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / share / idl / orbit-1.0 / CosNaming.idl < prev    next >
Text File  |  2005-10-20  |  2KB  |  79 lines

  1.  
  2. #ifndef _CosNaming_IDL_
  3. #define _CosNaming_IDL_
  4.  
  5. #pragma prefix "omg.org"
  6.  
  7. module CosNaming {
  8.     typedef string Istring;
  9.     struct NameComponent {
  10.         Istring id;
  11.         Istring kind;
  12.     };
  13.  
  14.     typedef sequence<NameComponent> Name;
  15.  
  16.     enum BindingType {
  17.         nobject,
  18.         ncontext
  19.     };
  20.  
  21.     struct Binding {
  22.         Name binding_name;
  23.         BindingType binding_type;
  24.     };
  25.  
  26.     typedef sequence<Binding> BindingList;
  27.  
  28.     interface BindingIterator;
  29.  
  30.     interface NamingContext {
  31.         enum NotFoundReason {
  32.             missing_node,
  33.             not_context,
  34.             not_object
  35.         };
  36.  
  37.         exception NotFound {
  38.             NotFoundReason why;
  39.             Name rest_of_name;
  40.         };
  41.  
  42.         exception CannotProceed {
  43.             NamingContext ctx;
  44.             Name rest_of_name;
  45.         };
  46.  
  47.         exception InvalidName{};
  48.         exception AlreadyBound{};
  49.         exception NotEmpty{};
  50.  
  51.         void bind(in Name n, in Object obj)
  52.             raises(NotFound, CannotProceed, InvalidName, AlreadyBound);
  53.         void rebind(in Name n, in Object obj)
  54.             raises(NotFound, CannotProceed, InvalidName);
  55.         void bind_context(in Name n, in NamingContext nc)
  56.             raises(NotFound, CannotProceed, InvalidName, AlreadyBound);
  57.         void rebind_context(in Name n, in NamingContext nc)
  58.             raises(NotFound, CannotProceed, InvalidName);
  59.         Object resolve(in Name n)
  60.             raises(NotFound, CannotProceed, InvalidName);
  61.         void unbind(in Name n)
  62.             raises(NotFound, CannotProceed, InvalidName);
  63.         NamingContext new_context();
  64.         NamingContext bind_new_context(in Name n)
  65.             raises(NotFound, AlreadyBound, CannotProceed, InvalidName);
  66.         void destroy()
  67.             raises(NotEmpty);
  68.         void list(in unsigned long how_many, out BindingList bl, out BindingIterator bi);
  69.     };
  70.  
  71.     interface BindingIterator {
  72.         boolean next_one(out Binding b);
  73.         boolean next_n(in unsigned long how_many, out BindingList bl);
  74.         void destroy();
  75.     };
  76. };
  77.  
  78. #endif /* !_CosNaming_IDL_ */
  79.